
/* Hero Section Styles */
.hero-section {
  background: linear-gradient(180deg, #fff6fa 0%, #fff6f6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 0px -1px 40px 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #232a36;
  margin-bottom: 0.5em;
  line-height: 1.1;
}

.hero-section .highlight {
  background: linear-gradient(90deg, #ff5e62 0%, #ff9966 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-section p {
  color: #4a5568;
  font-size: 1.25rem;
  margin-bottom: 2em;
}

.hero-section .button-group {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 2em;
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 300px;
    padding: 40px 10px 20px 10px;
    max-width: 94.5vw;
    width: 100%;
    margin: 0 auto;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 1em;
  }
}

.hero-section .btn-primary {
  background: linear-gradient(90deg, #ff5e62 0%, #ff9966 100%);
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.9em 2.2em;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255, 94, 98, 0.08);
}

.hero-section .btn-primary:hover {
  box-shadow: 0 4px 16px rgba(255, 94, 98, 0.18);
}

.hero-section .btn-outline {
  background: #fff;
  color: #ff5e8a;
  border: 2px solid #ff5e8a;
  border-radius: 2em;
  padding: 0.9em 2.2em;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hero-section .btn-outline:hover {
  background: #ff5e8a;
  color: #fff;
}

/* Statistics Section Styles */
.stats-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3em;
  background: #fff;
  padding: 40px 20px 60px 20px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  margin: 1em 0;
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff5e62 0%, #ff9966 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(255, 94, 98, 0.10);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #232a36;
  margin-bottom: 0.2em;
}

.stat-label {
  color: #4a5568;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 900px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
  .hero-section h1 {
    font-size: 2.2rem;
  }
}

/* Our Programs Section Styles */
.programs-section {
  background: linear-gradient(180deg, #fff6fa 0%, #fff6f6 100%);
  padding: 60px 20px 40px 20px;
  text-align: center;
}

.programs-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #232a36;
  margin-bottom: 0.5em;
}

.programs-section p {
  color: #4a5568;
  font-size: 1.25rem;
  margin-bottom: 2.5em;
}

.programs-cards {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
}

.program-card {
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px rgba(255, 94, 98, 0.08);
  padding: 2.5em 2em 2em 2em;
  max-width: 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2em;
  transition: box-shadow 0.2s;
}

.program-card:hover {
  box-shadow: 0 4px 24px rgba(255, 94, 98, 0.18);
}

.program-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ff5e62 0%, #ff9966 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2em;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(255, 94, 98, 0.10);
}

.program-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #232a36;
  margin-bottom: 0.7em;
}

.program-card p {
  color: #4a5568;
  font-size: 1.05rem;
  margin-bottom: 1em;
}

.program-card ul {
  padding-left: 1.2em;
  margin: 0;
  color: #232a36;
  font-size: 1rem;
}

.program-card ul li {
  margin-bottom: 0.5em;
  list-style-type: disc;
}

@media (max-width: 900px) {
  .programs-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
  .program-card {
    max-width: 95vw;
    min-width: 0;
  }
  .programs-section h2 {
    font-size: 2rem;
  }
}

/* Partners Section Styles */
.partners-section {
  background: linear-gradient(180deg, #fff6fa 0%, #fff6f6 100%);
  padding: 60px 20px 40px 20px;
  text-align: center;
}

.partners-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #232a36;
  margin-bottom: 0.5em;
}

.partners-section p {
  color: #4a5568;
  font-size: 1.25rem;
  margin-bottom: 2em;
}

.partners-cards-group {
  background: linear-gradient(135deg, #fff6fa 0%, #fff6f6 100%);
  border-radius: 1.5em;
  box-shadow: 0 2px 16px rgba(255, 94, 98, 0.08);
  padding: 2.5em 2em 2em 2em;
  margin: 2em auto;
  max-width: 1200px;
}

.partners-cards-group h3 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #232a36;
  margin-bottom: 1.2em;
}

/* Get Involved Section Styles */
.get-involved-section {
  background: linear-gradient(135deg, #ff5e8a 0%, #ff9966 100%);
  padding: 60px 0 80px 0;
  color: #fff;
}
.get-involved-section h2 {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
}
.get-involved-section p {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 2.5em;
  color: #fff;
}
.get-involved-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  max-width: 1100px;
  margin: 0 auto;
}
.get-involved-contact, .get-involved-support {
  flex: 1 1 320px;
  min-width: 280px;
}
.get-involved-contact h3, .get-involved-support h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2em;
  color: #fff;
}
.get-involved-contact-info {
  font-size: 1.15rem;
  margin-bottom: 1.2em;
  display: flex;
  align-items: center;
}
.get-involved-contact-info i {
  margin-right: 0.7em;
}
.get-involved-support-box {
  background: rgba(255,255,255,0.13);
  border-radius: 1em;
  padding: 1.2em 1.5em;
  margin-bottom: 1.2em;
}
.get-involved-support-box-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3em;
  color: #fff;
}
.get-involved-support-box-desc {
  font-size: 1.05rem;
  color: #fff;
}

@media (max-width: 900px) {
  .get-involved-content {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
  .get-involved-contact, .get-involved-support {
    min-width: 0;
    width: 95vw;
  }
  .get-involved-section h2 {
    font-size: 2rem;
  }
}

.partners-cards-group h3 .icon {
  margin-right: 0.5em;
  font-size: 1.3em;
  color: #ff5e8a;
}

.partners-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: flex-start;
}

.partner-card {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 8px rgba(255, 94, 98, 0.08);
  padding: 1.2em 1.5em;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1em;
  transition: box-shadow 0.2s;
}

.partner-card:hover {
  box-shadow: 0 4px 16px rgba(255, 94, 98, 0.18);
}

.partner-card strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #232a36;
  margin-bottom: 0.2em;
}

.partner-card span {
  color: #4a5568;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .partners-cards-group {
    padding: 1.2em 0.5em;
    max-width: 98vw;
  }
  .partners-cards {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  .partner-card {
    max-width: 95vw;
    min-width: 0;
  }
  .partners-section h2 {
    font-size: 2rem;
  }
}
